home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / scanchar.h < prev    next >
C/C++ Source or Header  |  1996-04-10  |  3KB  |  65 lines

  1. /* Copyright (C) 1990, 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* scanchar.h */
  20. /* Character scanning table for Ghostscript */
  21. /* Requires scommon.h */
  22.  
  23. /*
  24.  * An array for fast scanning of names, numbers, and hex strings.
  25.  * Indexed by character code (including exceptions), it contains:
  26.  *    0 - max_radix-1 for valid digits,
  27.  *    ctype_name for other characters valid in names,
  28.  *    ctype_btoken for characters introducing binary tokens
  29.  *      (if the binary token feature is enabled),
  30.  *    ctype_space for whitespace characters,
  31.  *    ctype_exception for exceptions (see scommon.h), and
  32.  *    ctype_other for everything else.
  33.  * Exceptions are negative values; we bias the table origin accordingly.
  34.  *
  35.  * NOTE: This table is defined in iscantab.c and used in a variety of places.
  36.  * If any of the values below change, you must edit the table.
  37.  */
  38. extern const byte scan_char_array[max_stream_exception + 256];
  39. #define scan_char_decoder (&scan_char_array[max_stream_exception])
  40. #define min_radix 2
  41. #define max_radix 36
  42. #define ctype_name 100
  43. #define ctype_btoken 101
  44. #define ctype_space 102
  45. #define ctype_other 103
  46. #define ctype_exception 104
  47. /* Special characters with no \xxx representation */
  48. #define char_NULL 0
  49. #define char_EOT 004            /* ^D, job delimiter */
  50. #define char_VT 013            /* ^K, vertical tab */
  51. #define char_DOS_EOF 032        /* ^Z */
  52. /*
  53.  * Most systems define '\n' as 0x0a and '\r' as 0x0d; however, OS-9
  54.  * has '\n' = '\r' = 0x0d and '\l' = 0x0a.  To deal with this,
  55.  * we introduce abstract characters char_CR and char_EOL such that
  56.  * any of [char_CR], [char_CR char_EOL], or [char_EOL] is recognized
  57.  * as an end-of-line sequence.
  58.  */
  59. #define char_CR '\r'
  60. #if '\r' == '\n'
  61. #  define char_EOL 0x0a        /* non-OS-9 compilers complain about '\l' */
  62. #else
  63. #  define char_EOL '\n'
  64. #endif
  65.